home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / mgr / mgr.zoo / mgrdif1.zoo / src / atari / Makefile
Encoding:
Makefile  |  1991-03-01  |  1.2 KB  |  40 lines

  1. #                        Copyright (c) 1988,1989 Bellcore
  2. #                            All Rights Reserved
  3. #       Permission is granted to copy or use this program, EXCEPT that it
  4. #       may not be sold for profit, the copyright notice must be reproduced
  5. #       on copies, and credit should be given to Bellcore where it is due.
  6. #       BELLCORE MAKES NO WARRANTY AND ACCEPTS NO LIABILITY FOR THIS PROGRAM.
  7.  
  8. #    $Header: Makefile,v 1.2 89/05/23 08:33:45 sau Exp $
  9. #    $Source: /mnt/sau/bitblt/DEC/RCS/Makefile,v $
  10.  
  11. #    makefile for the Atari blit library (adapted from S. A. Uhler)
  12.  
  13. #    Compile flags
  14. #      INVERT    - invert the sense of black and white
  15. #      UNROLL - Unroll the inner loops
  16. #      NOCLIP    - Don't do clipping on bit-blits
  17.  
  18. CROSSDIR = /net/acae127/home/bammi/atari/cross-gcc
  19. CROSSBIN = $(CROSSDIR)/bin
  20. START=.
  21. CFLAGS= $(FLAG) -I. -DUNROLL
  22. CC=$(CROSSBIN)/cgcc
  23. AR=$(CROSSBIN)/car
  24.  
  25. LIBOBJS=bitmap.o blit.o line.o pixel.o bit_on.o
  26.  
  27. blitlib.a:        $(LIBOBJS)
  28.             $(AR) rs blitlib.a $(LIBOBJS)
  29.  
  30. rops:        rops.o bitmap.o blit.o
  31.             $(CC) $(CFLAGS) -o rops rops.o blit.o bitmap.o
  32.  
  33. test_rop:    test_rop.o bitmap.o blit.o
  34.             $(CC) $(CFLAGS) -o test_rop test_rop.o blit.o bitmap.o
  35.  
  36. bitmap.o blit.o line.o pixel.o bit_on.o:    bitmap.h
  37.  
  38. clean:
  39.     -rm -f *.o core blit.c
  40.